home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 16 / CU Amiga Magazine's Super CD-ROM 16 (1997-10-16)(EMAP Images)(GB)[!][issue 1997-11].iso / CUCD / Graphics / Ghostscript / source / gxfont.h < prev    next >
C/C++ Source or Header  |  1997-07-01  |  7KB  |  208 lines

  1. /* Copyright (C) 1989, 1995, 1996, 1997 Aladdin Enterprises.  All rights reserved.
  2.   
  3.   This file is part of Aladdin Ghostscript.
  4.   
  5.   Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  6.   or distributor accepts any responsibility for the consequences of using it,
  7.   or for whether it serves any particular purpose or works at all, unless he
  8.   or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  9.   License (the "License") for full details.
  10.   
  11.   Every copy of Aladdin Ghostscript must include a copy of the License,
  12.   normally in a plain ASCII text file named PUBLIC.  The License grants you
  13.   the right to copy, modify and redistribute Aladdin Ghostscript, but only
  14.   under certain conditions described in the License.  Among other things, the
  15.   License requires that the copyright notice and this notice be preserved on
  16.   all copies.
  17. */
  18.  
  19. /* gxfont.h */
  20. /* Internal font definition for Ghostscript library */
  21. /* Requires gsccode.h, gsmatrix.h, gxdevice.h */
  22. #include "gsfont.h"
  23. #include "gsuid.h"
  24. #include "gsstruct.h"            /* for extern_st */
  25. #include "gxftype.h"
  26.  
  27. /* A font object as seen by clients. */
  28. /* See the PostScript Language Reference Manual for details. */
  29.  
  30. #ifndef gs_show_enum_DEFINED
  31. #  define gs_show_enum_DEFINED
  32. typedef struct gs_show_enum_s gs_show_enum;
  33. #endif
  34.  
  35. /*
  36.  * Fonts are "objects" to a limited extent, in that some of their
  37.  * behavior is provided by a record of procedures in the font.
  38.  * However, adding new types of fonts (subclasses) is not supported well.
  39.  */
  40.  
  41. typedef struct gs_font_procs_s {
  42.  
  43.     /*
  44.      * Define any needed procedure for initializing the composite
  45.      * font stack in a show enumerator.  This is a no-op for
  46.      * all but composite fonts.
  47.      */
  48.  
  49. #define font_proc_init_fstack(proc)\
  50.   int proc(P2(gs_show_enum *, gs_font *))
  51.     font_proc_init_fstack((*init_fstack));
  52.  
  53.     /*
  54.      * Define the font's algorithm for getting the next character from
  55.      * a string being shown.  This is trivial, except for composite fonts.
  56.      * Returns 0 if the current (base) font didn't change,
  57.      * 1 if it did change, 2 if there are no more characters,
  58.      * or an error code.
  59.      *
  60.      * This procedure is OBSOLETE as of release 4.61, superseded by
  61.      * next_glyph; however, we have to continue supporting it for
  62.      * backward compatibility.
  63.      */
  64.  
  65. #define font_proc_next_char(proc)\
  66.   int proc(P2(gs_show_enum *, gs_char *))
  67.     font_proc_next_char((*next_char));
  68.  
  69.     /* A client-supplied character encoding procedure. */
  70.  
  71. #define font_proc_encode_char(proc)\
  72.   gs_glyph proc(P3(gs_show_enum *, gs_font *, gs_char *))
  73.     font_proc_encode_char((*encode_char));
  74.  
  75.     /*
  76.      * A client-supplied BuildChar/BuildGlyph procedure.
  77.      * The gs_char may be gs_no_char (for BuildGlyph), or the gs_glyph
  78.      * may be gs_no_glyph (for BuildChar), but not both.
  79.      */
  80.  
  81. #define font_proc_build_char(proc)\
  82.   int proc(P5(gs_show_enum *, gs_state *, gs_font *, gs_char, gs_glyph))
  83.     font_proc_build_char((*build_char));
  84.  
  85.     /* Callback procedures for external font rasterizers */
  86.     /* (see gsccode.h for details.) */
  87.  
  88.     gx_xfont_callbacks callbacks;
  89.     /*gs_proc_glyph_name((*glyph_name));*/
  90.  
  91.     /*
  92.      * Define any special handling of gs_definefont.
  93.      * We break this out so it can be different for composite fonts.
  94.      */
  95.  
  96. #define font_proc_define_font(proc)\
  97.   int proc(P2(gs_font_dir *, gs_font *))
  98.     font_proc_define_font((*define_font));
  99.  
  100.     /*
  101.      * Define any special handling of gs_makefont.
  102.      * We break this out so it can be different for composite fonts.
  103.      */
  104.  
  105. #define font_proc_make_font(proc)\
  106.   int proc(P4(gs_font_dir *, const gs_font *, const gs_matrix *,\
  107.     gs_font **))
  108.     font_proc_make_font((*make_font));
  109.  
  110.     /*
  111.      * Define the font's algorithm for getting the next character or
  112.      * glyph from a string being shown.  We only use this if the
  113.      * next_char procedure is 0 (for backward compatibility).
  114.      */
  115.  
  116. #define font_proc_next_glyph(proc)\
  117.   int proc(P3(gs_show_enum *, gs_char *, gs_glyph *))
  118.     font_proc_next_glyph((*next_glyph));
  119.  
  120. } gs_font_procs;
  121. /* Default font procedures */
  122. font_proc_init_fstack(gs_default_init_fstack);
  123. font_proc_next_char(gs_default_next_char);
  124. font_proc_encode_char(gs_no_encode_char);
  125. font_proc_build_char(gs_no_build_char);
  126. font_proc_define_font(gs_no_define_font);
  127. font_proc_make_font(gs_no_make_font);
  128. font_proc_make_font(gs_base_make_font);
  129. font_proc_next_glyph(gs_default_next_glyph);
  130.  
  131. /* The font names are only needed for xfont lookup. */
  132. typedef struct gs_font_name_s {
  133. #define gs_font_name_max 47        /* must be >= 40 */
  134.     /* The +1 is so we can null-terminate for debugging printout. */
  135.     byte chars[gs_font_name_max+1];
  136.       uint size;
  137. } gs_font_name;
  138.  
  139. /*
  140.  * Define a generic font.  We include PaintType and StrokeWidth here because
  141.  * they affect rendering algorithms outside the Type 1 font machinery.
  142.  *
  143.  * ****** NOTE: If you define any subclasses of gs_font, you *must* define
  144.  * ****** the finalization procedure as gs_font_finalize.  Finalization
  145.  * ****** procedures are not automatically inherited.
  146.  */
  147. #define gs_font_common\
  148.     gs_font *next, *prev;        /* chain for original font list or */\
  149.                     /* scaled font cache */\
  150.     gs_memory_t *memory;        /* allocator for this font */\
  151.     gs_font_dir *dir;        /* directory where registered */\
  152.     gs_font *base;            /* original (unscaled) base font */\
  153.     void *client_data;        /* additional client data */\
  154.     gs_matrix FontMatrix;\
  155.     font_type FontType;\
  156.     bool BitmapWidths;\
  157.     fbit_type ExactSize, InBetweenSize, TransformedChar;\
  158.     int WMode;            /* 0 or 1 */\
  159.     int PaintType;            /* PaintType for Type 1/4/42 fonts, */\
  160.                     /* 0 for others */\
  161.     float StrokeWidth;        /* StrokeWidth for Type 1/4/42 */\
  162.                     /* fonts (if present), 0 for others */\
  163.     gs_font_procs procs;\
  164.     /* We store both the FontDirectory key (key_name) and, */\
  165.     /* if present, the FontName (font_name). */\
  166.     gs_font_name key_name, font_name
  167. /*typedef struct gs_font_s gs_font;*/    /* in gsfont.h and other places */
  168. struct gs_font_s {
  169.     gs_font_common;
  170. };
  171. extern_st(st_gs_font);        /* (abstract) */
  172. struct_proc_finalize(gs_font_finalize);    /* public for concrete subclasses */
  173. #define public_st_gs_font()    /* in gsfont.c */\
  174.   gs_public_st_complex_only(st_gs_font, gs_font, "gs_font",\
  175.     0, font_enum_ptrs, font_reloc_ptrs, gs_font_finalize)
  176. #define st_gs_font_max_ptrs 5
  177. #define private_st_gs_font_ptr()    /* in gsfont.c */\
  178.   gs_private_st_ptr(st_gs_font_ptr, gs_font *, "gs_font *",\
  179.     font_ptr_enum_ptrs, font_ptr_reloc_ptrs)
  180. #define st_gs_font_ptr_max_ptrs 1
  181. extern_st(st_gs_font_ptr_element);
  182. #define public_st_gs_font_ptr_element()    /* in gsfont.c */\
  183.   gs_public_st_element(st_gs_font_ptr_element, gs_font *, "gs_font *[]",\
  184.     font_ptr_element_enum_ptrs, font_ptr_element_reloc_ptrs, st_gs_font_ptr)
  185.  
  186. /* Define a base (not composite) font. */
  187. #define gs_font_base_common\
  188.     gs_font_common;\
  189.     gs_rect FontBBox;\
  190.     gs_uid UID;\
  191.     int encoding_index;        /* 0=Std, 1=ISOLatin1, 2=Symbol, */\
  192.                     /* 3=Dingbats, -1=other */\
  193.     int nearest_encoding_index    /* (may be >= 0 even if */\
  194.                     /* encoding_index = -1) */
  195. #ifndef gs_font_base_DEFINED
  196. #  define gs_font_base_DEFINED
  197. typedef struct gs_font_base_s gs_font_base;
  198. #endif
  199. struct gs_font_base_s {
  200.     gs_font_base_common;
  201. };
  202. extern_st(st_gs_font_base);
  203. #define public_st_gs_font_base()    /* in gsfont.c */\
  204.   gs_public_st_suffix_add1_final(st_gs_font_base, gs_font_base,\
  205.     "gs_font_base", font_base_enum_ptrs, font_base_reloc_ptrs,\
  206.     gs_font_finalize, st_gs_font, UID.xvalues)
  207. #define st_gs_font_base_max_ptrs (st_gs_font_max_ptrs + 1)
  208.